html, body {
	margin:0;
	padding:0;
	width:100%;
	height:100%;
	background:#333;
	color:#BBB;
	font-family:Arial;
	overflow:hidden;
	font-size:12pt;
}

a {
	color:#FFF;
	text-decoration:underline;
}

p {
	margin:0;
	padding:0;
}

div#language {
	position:absolute;
	left:20px;
	top:5px;
}

div#loading {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#333;
	z-index:999;
	display:none;
}

div#logo {
	position:absolute;
	top:30px;
	right:20px;
	font-style:italic;
	font-size:20pt;
}

div#main {
	position:absolute;
	border:1px outset #000;
	bottom:5px;
	left:5px;
	right:5px;
	top:100px;
}
div#main div#search_section {
	top:10px;
	left:10px;
	right:10px;
	bottom:10px;
	position:absolute;
}
div#main div#result_section {
	position:absolute;
	top:90px;
	left:0;
	right:0;
	bottom:0;
	border:1px solid #666;
	overflow:auto;
}
div#main div#result_section table#search_result {
	color:#FFF;
}
div#main div#result_section table#search_result tr:first-child {
	background:url(../img/button.png) repeat-x bottom;
	cursor:pointer;
}
div#main div#result_section table#search_result tr:first-child td:active {
	background:url(../img/button_clicked.png) repeat-x top;
}
div#main div#result_section table#search_result tr:first-child td:hover {
	text-decoration:underline;
}
div#main div#result_section table#search_result tr:not(:first-child):hover td {
	background:url(../img/grid_hover.png) repeat-x top;
	border-right:1px solid #111;
	border-bottom:1px solid #111;
	cursor:pointer;
}
div#main div#result_section table#search_result tr td {
	border-right:1px solid #666;
	border-bottom:1px solid #666;
	padding:2px;
}
div#main div#result_section table#search_result tr:first-child td {
	border-right:1px solid #666;
	border-bottom:1px solid #666;
	padding:3px;
}
div#main div#result_section table#search_result tr:first-child td:last-child {
	border-right:none;
}

div#main div#result_section table#recipe_view {
	color:#FFF;
}
div#main div#result_section table#recipe_view tr td {
	padding:2px;
}
div#main div#result_section table#recipe_view table {
	margin:10px;
	border:1px solid #666;
}

div#main div#result_section table#recipe_view_components tr td {
	border-right:1px solid #666;
	border-bottom:1px solid #666;
}
div#main div#result_section table#recipe_view_components tr:first-child td {
	background:#111;
}
div#main div#result_section table#recipe_view_components tr td:last-child {
	border-right:none;
}
div#main div#result_section table#recipe_view_components tr:last-child td {
	border-bottom:none;
}

input[type=text] {
	border:1px solid #666;
	background:#111;
	font-size:12pt;
	color:#FFF;
}
input[type=submit] {
	border:1px solid #666;
	background:url(../img/button.png) repeat-x bottom;
	font-size:12pt;
	color:#FFF;
}
input[type=submit]:hover {
	background:url(../img/button_hover.png) repeat-x bottom;
}
input[type=submit]:active {
	background:url(../img/button_clicked.png) repeat-x top;
}
select {
	border:1px solid #666;
	background:#111;
	font-size:12pt;
	color:#FFF;
}

p#error {
	padding:10px;
	border:1px solid #F00;
	margin:10px;
	background:#111;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}